我的網站是'http://www.yx86911.com/Defaul...' 或'http://www.yx86911.com/Defaul...' 如何去掉後面的取得'http:// www.yx86911.com'
謝謝下面兩位的回答
不好意思沒說清楚,資料夾還是要留的
例如http://www.yx86911.com/xxx/in... 要取得http://www.yx86911.com/xxx/
黄舟2017-06-12 09:30:55
我覺得他的意思是用正則匹配地址,
樓主,你是想只匹配第一個文件夾還是除文件外所有文件夾
var a = 'http://www.yx86911.com/xxx/555/index.html';
a.match(/http:\/\/.+com\/(.+?\/)?/)//匹配出"http://www.yx86911.com/xxx/"
a.match(/http:\/\/.+com\/(.+\/)?/)//匹配出"http://www.yx86911.com/xxx/555/"
学习ing2017-06-12 09:30:55
這個一般都是在Apache,IIS或是Nginx裡面配置的,其中Apache的設定方法是:
開啟mod_rewrite模組
LoadModule rewrite_module libexec/apache2/mod_rewrite.so
1
將 AllowOverride None
改為 AllowOverride All