/ Published in: Other
Expand |
Embed | Plain Text
<IfModule mod_rewrite.c> Options FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-fq #Rewrites ignores these folders. #RewriteRule ^includes/.*$ - [PT] RewriteRule ^static/.*$ - [PT] #Pretty URL rewrites RewriteRule ^([^/.]+)/?$ index.php?action=$1 [L] RewriteRule ^([^/.]+)/([^/.]+)/?$ index.php?action=$1§ion=$2 [L] RewriteRule ^([^/.]+)/([^/.]+)/([^/.]+)/?$ index.php?action=$1§ion=$2&subsection=$3 [L] RewriteRule ^([^/.]+)/([^/.]+)/([^/.]+)/([^/.]+)/?$ index.php?action=$1§ion=$2&subsection=$3&do=$4 [L] #Error ErrorDocument 404 /index.php?page=error§ion=404 </IfModule>
You need to login to post a comment.
