squiblo Posted January 3, 2012 Share Posted January 3, 2012 I currently have this .htaccess in my root directory RewriteEngine On RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?p=$1 RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?p=$1 So I can type things such as "www.website.com/page", which is the equivalent of typing www.website.com/?p=page. But now I cant add more GET variables, IE this will not work - "www.website.com/page/?v=data". What can I do to fix this? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/254245-url-rewrite-will-not-allow-more-parameters/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.