Reputation: 73
I have a url rewrite issue on the .htaccess file. There are 2 rules on the file:
rule 1 // When user open "example.com/test.php" on a browser then user will be redirected to "example.com/test".
htaccess rule: RewriteRule ^test.php(.*)$ http://example.com/test/$1 [r=301,nc]
rule 2 // When user will open "example.com/test" we will retrieve the content from "example.com/test.php".
htaccess rule: RewriteRule ^test/ test.php [NC]
Right now those rules are not working, maybe there is a conflict somewhere. What rewrite rules i should use for the above conditions?
Upvotes: 0
Views: 340
Reputation: 3080
The two rules conflict with one an other. One writes test.php to test and the other writes test to test.php, which is likely to leave you in an infinite loop, either within the rewrite engine or between the browser and server depending on how you implement the rewrite.
To solve this I've used a condition to check the requested URI rather than the URI as its currently rewritten.
Try this:
RewriteRule ^test/$ test.php [NC]
RewriteCond %{THE_REQUEST} ^[A-Z]+\ (/[^\ ]*)\.php[?\ ]
RewriteRule ^test\.php(.*)$ http://example.com/test/$1 [R=301,NC]
Couple of things to note that might also be factors:
test.php
in your first rewriteUpvotes: 1