Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fancy URLs problem.
#5
AddDefaultCharset UTF-8
Options -Indexes

# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
Order allow,deny
Deny from all
Satisfy All
</Files>
<Files sitemap.xml>
Order allow,deny
Allow from all
Satisfy All
</Files>

RewriteEngine on

# Usually it RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase /gs3/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]

============================================OR

RewriteEngine on

<ifmodule mod_rewrite.c="">
RewriteEngine On
RewriteBase /gs3/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /gs3/index.php [L]
</ifmodule>

What does it say in the .htaccess?

I can't use Fancy URL.

I used to use Fancy url with the ".htaccess" below, but now I can't either way.
Reply


Messages In This Thread
Fancy URLs problem. - by wobo - 2012-08-11, 21:34:02
RE: Fancy URLs problem. - by kazu - 2012-12-29, 23:40:58
Fancy URLs problem. - by eatons - 2012-08-13, 02:19:33
Fancy URLs problem. - by wobo - 2012-08-13, 02:28:50
Fancy URLs problem. - by yojoe - 2012-08-13, 18:56:08



Users browsing this thread: 1 Guest(s)