【发布时间】:2014-05-07 12:19:46
【问题描述】:
这是我的.htaccess 代码:
【问题讨论】:
标签: .htaccess
这是我的.htaccess 代码:
【问题讨论】:
标签: .htaccess
您可以在 root .htaccess 中使用此规则:
AddHandler x-httpd-php5-3 .php
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} /welcome[/?\s] [NC]
RewriteRule ^ / [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
【讨论】:
/home,现在你说的是/welcome。您尝试的完整 URL 是什么?这个 .htaccess 的位置是什么?