.htaccess rewrite file path to folder path

爷,独闯天下 提交于 2019-12-11 03:42:20

问题


I have a subdirectory contact and inside contact.php and contact_content.php and .htaccess file

In .htaccess file I have following code:

Options +FollowSymLinks
RewriteEngine on

RewriteCond %{REQUEST_URI} ^/contact/contact.php
RewriteRule ^ /contact [R=301,L]

RewriteRule ^/$ contact.php [NC,L,END] 

# deny access
RewriteRule ^(contact_content)\.php - [F,L,NC]

Deny access part and the first rewrite rule work perfectly but the problem is the second rewriterule-> when I go to localhost/contact I am shown the list of files in contact directory instead of contact.php site


回答1:


This works for me-> modified Sahil Gulati answer

Options +FollowSymLinks -Indexes
RewriteEngine On

RewriteCond %{REQUEST_URI} ^/contact/contact.php
RewriteRule ^ /contact [R=301,L]

RewriteCond %{REQUEST_URI} ^/contact/?$
RewriteRule ^(.*)$ /contact/contact.php [L,QSA,END]

RewriteRule ^(contact_content)\.php - [F,L,NC]



回答2:


Hopefully it will work fine.

RewriteEngine On

Options -Indexes
RewriteCond %{REQUEST_URI} contact\.php$
RewriteRule ^(.*)$ /contact [R=301]


RewriteCond %{REQUEST_URI} ^/contact/?$
RewriteRule ^(.*)$ /$1/contact.php [L,QSA,END]

RewriteRule ^(contact_content)\.php - [F,L,NC]


来源:https://stackoverflow.com/questions/43342312/htaccess-rewrite-file-path-to-folder-path

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!