htaccess RewriteRule issue

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mukeshmore
Forum Newbie
Posts: 1
Joined: Thu May 11, 2017 6:44 am

htaccess RewriteRule issue

Post by mukeshmore »

I have written rewriterule in htaccess for accessing category page. Category page working file, but my subfolder not browse which contains other files.

You can see code below

------------------------
Options +FollowSymlinks

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([A-Za-z0-9-]+)/$ category.php?category=$1
------------------------


e.g.

If i access the page

http://example.com/international/

Its showing the category result page. This is working perfectly.

But when i tried my subfolder which exists on root directory, not accessible because of rewriterule written above. Its showing same category page like international.

http://example.com/subfolder/

subfolder = is the subfolder exists
Post Reply