编写自定义.htaccess文件以进行路由

时间:2018-01-24 10:41:19

标签: php .htaccess

我想要一个.htacccess文件,它将为我提供自定义路由。

  

E.g;无论我在使用我的域名(www.example.com/anything)之后放下什么,   它会将我重定向到(www.example.com/index.html)。任何人都可以提供这个文件吗?

感谢您的帮助,

1 个答案:

答案 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]