Jump to content

.htaccess


deansaddigh

Recommended Posts

Your rule will work given the example URL you gave, typing in or clicking a link to...

 

http://www.languageschoolsuk.com/view_all_schools

 

...will display...

 

http://www.languageschoolsuk.com/view_all_schools.php

 

Due to the extreme simplicity of your pattern though it will match every single link on your site, including the ones it has already redirected.

 

RewriteEngine on
RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
RewriteRule ^([^.])$ /$1.php

 

Would be closer, because this way you are only rewriting patterns URLs that don't exist as a file or directory, plus you are only rewriting rules that don't contain a fullstop, meaning you won't match anything that already has a file extension.

 

Link to comment
https://forums.phpfreaks.com/topic/208295-htaccess/#findComment-1089623
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.