我提到alexcican website,並將代碼放入我的htaccess。如何從實時網站中刪除.php擴展名
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
它工作在我localhost
,但在svn link
或live website
不起作用。請幫忙。
我提到alexcican website,並將代碼放入我的htaccess。如何從實時網站中刪除.php擴展名
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
它工作在我localhost
,但在svn link
或live website
不起作用。請幫忙。
您使用的是Apache服務器嗎?檢查是否啓用mod_rewrite
。
這一個爲我工作:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase/
## don't touch /forum URIs
RewriteRule ^forums/ - [L,NC]
## hide .php extension snippet
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule^%1 [R,L]
# To internally forward /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ $1.php [L]
是的,我使用Apache服務器,mod_rewrite啓用。 – codieboie
檢查你的apache配置是否你的'AllowOverride None'也改變了'AllowOverride All'你的目錄。 http://stackoverflow.com/questions/18740419/how-to-set-allowoverride-all – Bink
它已經完成。仍然沒有工作:(對不起我的可憐的英語 – codieboie