我的网址很好,并且正在访问我的index.php
页面,但我想添加一个例外。如果用户在/ admin中输入admin.php
而不是index.php
,我会希望如此。
我有这个:
RewriteEngine on
RewriteBase /
# Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1
我尝试将其添加到文件的开头:
Redirect /admin admin.php
但似乎没有做到这一点
谢谢! 斯科特
答案 0 :(得分:0)
RewriteRule ^admin$ admin.php [L, NC]
怎么样?