我想要一个.htacccess
文件,它将为我提供自定义路由。
E.g;无论我在使用我的域名(www.example.com/anything)之后放下什么, 它会将我重定向到(www.example.com/index.html)。任何人都可以提供这个文件吗?
感谢您的帮助,
答案 0 :(得分:0)
你可以试试这个:
RewriteEngine on RewriteCond %{REQUEST_URI} !^/js/ RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
或强>
RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{REQUEST_FILENAME}/index\.(html|php) !-f RewriteRule ^ http://example.com/something-blew-up.html [R=302]