我想舉例www.mydomain.com/about.php爲www.mydomain.com/about。.htaccess rewrite = 404頁面
基於一些博客閱讀,
在這裏我有什麼對我的httpd.conf
<Directory "var/www/mydomain">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Allow from all
Order allow, deny
RewriteEngine On
</Directory>
我的.htaccess文件
Order deny,allow
DirectoryIndex index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
www.mydomain.com/about.php仍然有效,但/ about有404 URL未找到頁面。
上述配置有問題嗎?
P兩次嘗試均顯示404個URL未找到頁面。 – hangee
對不起,我編輯了代碼。再試一次 –
仍顯示404頁面。 – hangee