Just looking for some general advice on modifying the URL for php.
I am using .htaccess to allow a web site to translate example.html to
index.php?conte nt=example
(below)
ErrorDocument 404 http://www.example.com
RewriteEngine on
RewriteRule ^/?(.*).html$ /index.php?conte nt=$1 [L]
Is there any downside to using this method. I just want to know before I
roll it out over several other sites.
Nel.
I am using .htaccess to allow a web site to translate example.html to
index.php?conte nt=example
(below)
ErrorDocument 404 http://www.example.com
RewriteEngine on
RewriteRule ^/?(.*).html$ /index.php?conte nt=$1 [L]
Is there any downside to using this method. I just want to know before I
roll it out over several other sites.
Nel.
Comment